﻿------------------------------------------------------------------------
r3726 | plombo | 2012-10-31 11:30:49 -0400 (Wed, 31 Oct 2012) | 4 lines
Changed paths:
   M /engine/openbor.c

Allow selecting the OpenGL filtering method (simple or bilinear) in
fullscreen.  This was supposed to be allowed when I separated the video
settings for windowed and fullscreen in the save data, but I overlooked it
then.
------------------------------------------------------------------------
r3725 | plombo | 2012-10-30 14:38:14 -0400 (Tue, 30 Oct 2012) | 4 lines
Changed paths:
   M /engine/sdl/control.c

Silence debug spew to stderr when processing joystick input.  I added it a
long time ago for debugging purposes and apparently forgot to disable it.  It
went unnoticed until now because the stderr stream is only visible when
running OpenBOR from a terminal in Linux or Darwin.
------------------------------------------------------------------------
r3724 | plombo | 2012-10-30 14:38:13 -0400 (Tue, 30 Oct 2012) | 2 lines
Changed paths:
   M /engine/source/gfxlib/gfx.c
   M /engine/source/gfxlib/scanline.c

Rewrote the Scanline 2x and Scanline TV 2x scaling filters to fix conflicts
with the GPL.
------------------------------------------------------------------------
r3723 | plombo | 2012-10-30 14:38:12 -0400 (Tue, 30 Oct 2012) | 1 line
Changed paths:
   M /engine/source/gfxlib/scale2x.c

Fix crashes in Scale2x MMX implementation.
------------------------------------------------------------------------
r3722 | utunnels | 2012-10-28 22:29:55 -0400 (Sun, 28 Oct 2012) | 3 lines
Changed paths:
   M /engine/openbor.c

Fix special3(aka jumpspecial) dive bug. 
Fix difficulty menu scroll bar (more than 10 modes are supported now).

------------------------------------------------------------------------
r3721 | plombo | 2012-10-28 21:52:53 -0400 (Sun, 28 Oct 2012) | 2 lines
Changed paths:
   M /engine/source/gfxlib/scale2x.c

Cleaned the Scale2x rewrite up a bit and changed the MMX assembly code to not
use the ebx register.  Hopefully this will fix the compile error in Darwin.
------------------------------------------------------------------------
r3720 | plombo | 2012-10-26 17:53:18 -0400 (Fri, 26 Oct 2012) | 4 lines
Changed paths:
   M /engine/source/gfxlib/simple2x.c

Complete rewrite of Simple 2x scaling filter to remove more GPL-licensed code
from the engine.  The implementation ended up being very similar, even though
I didn't look at the original code until after finishing my own
implementation.
------------------------------------------------------------------------
r3719 | utunnels | 2012-10-26 04:04:00 -0400 (Fri, 26 Oct 2012) | 2 lines
Changed paths:
   M /engine/openbor.c
   M /engine/source/gamelib/transform.c

Enable remap and blend for 8 bit transform (transform.c). 
Minor debug message change(openbor.c).
------------------------------------------------------------------------
r3718 | utunnels | 2012-10-26 02:27:59 -0400 (Fri, 26 Oct 2012) | 2 lines
Changed paths:
   M /engine/openbor.c
   M /engine/source/gamelib/transform.c

Fix some debug messages.
Fix fill color and remap conflict under 8bit mode (3716).
------------------------------------------------------------------------
r3717 | plombo | 2012-10-25 01:44:16 -0400 (Thu, 25 Oct 2012) | 7 lines
Changed paths:
   M /engine/source/gfxlib/scale2x.c

Complete rewrite of the Scale2x (AdvanceMAME2x) filter.  The old version was
based on an implementation licensed under the GPL, which is incompatible with
our license.  Like the version it replaces, this rewrite has a fast MMX path
for x86 machines and a C path for everything else.

There's still a ton of GPL-encumbered code in the other scaling filters, but
this is at least a start.
------------------------------------------------------------------------
r3716 | utunnels | 2012-10-24 23:04:40 -0400 (Wed, 24 Oct 2012) | 4 lines
Changed paths:
   M /engine/openbor.c
   M /engine/openbor.h
   M /engine/openborscript.c
   M /engine/sdl/sdlport.c

Fix: shadowalpha 6 now works properly with corresponding map (inverted reflection, for example).
Minor: define savedata, savelevel and savescore in openbor.c instead of openbor.h; SDL port now uses pak name as window caption. 
